swift mailer 530 Must issue a STARTTLS command first.

84

//encrytion should be set while using email library
$transport = (new \Swift_SmtpTransport($smtp_server, $smtp_port))
                        ->setUsername($smtp_username)
                        ->setPassword($smtp_password)
                        ->setEncryption('tls');  //important to set encryption here.

Comments

Submit
0 Comments